summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2012-02-19 15:23:23 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2012-02-19 15:23:23 +0000
commitcf4b58b6f630f0f7ef2d14be8f48de781de85170 (patch)
treefda19b40204c84e17d2c5965a7a1b7f15b6f85da /src/osd
parent2f8094ea333d06e32d2694a467a4b40e0aa835c1 (diff)
Clean-ups and version bumpmame0145u1
Diffstat (limited to 'src/osd')
-rw-r--r--src/osd/sdl/sdl.mak4
-rw-r--r--src/osd/windows/winwork.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/osd/sdl/sdl.mak b/src/osd/sdl/sdl.mak
index d9766db40fb..9c2251fa5e8 100644
--- a/src/osd/sdl/sdl.mak
+++ b/src/osd/sdl/sdl.mak
@@ -58,7 +58,7 @@ USE_DISPATCH_GL = 1
# uncomment the next line to use couriersud's multi-keyboard patch for sdl2.0
# SDL2_MULTIAPI = 1
-# uncomment the next line to specify where you have installed
+# uncomment the next line to specify where you have installed
# SDL. Equivalent to the ./configure --prefix=<path>
# SDL_INSTALL_ROOT = /usr/local/sdl13
@@ -382,7 +382,7 @@ ifdef SDL_INSTALL_ROOT
# FIXME: remove the directfb ref. later. This is just there for now to work around an issue with SDL1.3 and SDL2.0
INCPATH += -I$(SDL_INSTALL_ROOT)/include/directfb
endif
-endif
+endif
INCPATH += `pkg-config --cflags fontconfig`
LIBS += `pkg-config --libs fontconfig`
diff --git a/src/osd/windows/winwork.c b/src/osd/windows/winwork.c
index 18c54f06e84..f71ccceba10 100644
--- a/src/osd/windows/winwork.c
+++ b/src/osd/windows/winwork.c
@@ -324,7 +324,7 @@ osd_work_queue *osd_work_queue_alloc(int flags)
// on an n-CPU system, create n threads for multi queues, and 1 thread for everything else
else
queue->threads = (flags & WORK_QUEUE_FLAG_MULTI) ? numprocs : 1;
-
+
// multi-queues with high frequency items should top out at 4 for now
// since we have scaling problems above that
if ((flags & WORK_QUEUE_FLAG_HIGH_FREQ) && queue->threads > 1)