comparison gui/ui/actions.c @ 33731:81f71d910333

Cosmetic: Change prefix for symbolic constants from GMP to GUI. GMP could be confused with the GNU Multiple Precision Arithmetic Library. Additionally, rename NEW_FILE SET_FILE and PREPARATION PREPARE to phrase requests.
author ib
date Tue, 05 Jul 2011 12:05:06 +0000
parents f3361b27a151
children 71c29e8ec68f
comparison
equal deleted inserted replaced
33730:b4c64f168b29 33731:81f71d910333
101 if (guiInfo.Playing == GUI_PAUSE) { 101 if (guiInfo.Playing == GUI_PAUSE) {
102 uiPause(); 102 uiPause();
103 return; 103 return;
104 } 104 }
105 105
106 gui(GMP_SET_STATE, (void *)GUI_PLAY); 106 gui(GUI_SET_STATE, (void *)GUI_PLAY);
107 uiSubRender = 0; 107 uiSubRender = 0;
108 wsSetBackgroundRGB(&guiApp.subWindow, 0, 0, 0); 108 wsSetBackgroundRGB(&guiApp.subWindow, 0, 0, 0);
109 wsClearWindow(guiApp.subWindow); 109 wsClearWindow(guiApp.subWindow);
110 } 110 }
111 111