Commented out a lot of excess logging;

Updated Makefile.local to add comments about NCR 53C810 and Voodoo log enable flags.
This commit is contained in:
OBattler
2017-12-28 20:42:45 +01:00
parent ac90896074
commit 4a829b31ad
17 changed files with 151 additions and 129 deletions

View File

@@ -8,7 +8,7 @@
*
* user Interface module for WinAPI on Windows.
*
* Version: @(#)win_ui.c 1.0.10 2017/12/15
* Version: @(#)win_ui.c 1.0.11 2017/12/28
*
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
* Miran Grca, <mgrca8@gmail.com>
@@ -369,7 +369,7 @@ MainWindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
break;
case IDM_VID_FULLSCREEN:
pclog("enter full screen though menu\n");
/* pclog("enter full screen though menu\n"); */
plat_setfullscreen(1);
config_save();
break;
@@ -618,7 +618,7 @@ MainWindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
break;
case WM_LEAVEFULLSCREEN:
pclog("leave full screen on window message\n");
/* pclog("leave full screen on window message\n"); */
plat_setfullscreen(0);
config_save();
break;
@@ -842,7 +842,7 @@ ui_init(int nCmdShow)
if (video_fullscreen && keyboard_isfsexit()) {
/* Signal "exit fullscreen mode". */
pclog("leave full screen though key combination\n");
/* pclog("leave full screen though key combination\n"); */
plat_setfullscreen(0);
}
}
@@ -959,13 +959,13 @@ plat_mouse_capture(int on)
GetClipCursor(&oldclip);
GetWindowRect(hwndRender, &rect);
ClipCursor(&rect);
pclog("mouse capture off, hide cursor\n");
/* pclog("mouse capture off, hide cursor\n"); */
show_cursor(0);
mouse_capture = 1;
} else if (!on && mouse_capture) {
/* Disable the in-app mouse. */
ClipCursor(&oldclip);
pclog("mouse capture on, show cursor\n");
/* pclog("mouse capture on, show cursor\n"); */
show_cursor(-1);
mouse_capture = 0;