summaryrefslogtreecommitdiff
path: root/engine_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-11-14 19:48:04 +0000
committertron <tron@openttd.org>2005-11-14 19:48:04 +0000
commitf7abff5f963cddfdd134ac52ffd8e72e3ed88f0c (patch)
treea9ba5d4f3c5c47ab3857060c5f95ed482530ed97 /engine_gui.c
parentd8b56c123eab7f7b48f2af3579130e366f6106ab (diff)
downloadopenttd-f7abff5f963cddfdd134ac52ffd8e72e3ed88f0c.tar.xz
(svn r3181) -Bracing
-Indentation -Whitespace -DeMorgan's Law -Test with NULL or 0 for non-booleans -'\0' instead of 0 for chars -Remove redundantly redundant comments (like DoFoo(); // Do foo) -Join multiple short lines with a single statement -Split single lines with multiple statements -Avoid assignments in if
Diffstat (limited to 'engine_gui.c')
-rw-r--r--engine_gui.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/engine_gui.c b/engine_gui.c
index eb4c35d41..2cb213064 100644
--- a/engine_gui.c
+++ b/engine_gui.c
@@ -65,12 +65,11 @@ static const DrawEngineInfo _draw_engine_list[4] = {
static void EnginePreviewWndProc(Window *w, WindowEvent *e)
{
- const DrawEngineInfo *dei;
- int width;
-
- switch(e->event) {
+ switch (e->event) {
case WE_PAINT: {
EngineID engine = w->window_number;
+ const DrawEngineInfo* dei;
+ int width;
DrawWindowWidgets(w);
@@ -91,12 +90,15 @@ static void EnginePreviewWndProc(Window *w, WindowEvent *e)
}
case WE_CLICK:
- switch(e->click.widget) {
- case 3: DeleteWindow(w); break;
- case 4:
- DoCommandP(0, w->window_number, 0, NULL, CMD_WANT_ENGINE_PREVIEW);
- DeleteWindow(w);
- break;
+ switch (e->click.widget) {
+ case 3:
+ DeleteWindow(w);
+ break;
+
+ case 4:
+ DoCommandP(0, w->window_number, 0, NULL, CMD_WANT_ENGINE_PREVIEW);
+ DeleteWindow(w);
+ break;
}
break;
}