diff options
author | tron <tron@openttd.org> | 2006-08-31 10:14:47 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2006-08-31 10:14:47 +0000 |
commit | 5f3f9f499d89657067d7359ad9329e8ca025f500 (patch) | |
tree | 153535ac9428187567e3fe62f1c793ef286826f4 /video | |
parent | c3900434b53968529c5a48382ecc5339fe644c53 (diff) | |
download | openttd-5f3f9f499d89657067d7359ad9329e8ca025f500.tar.xz |
(svn r6262) Remove unused #define and function declaration
Diffstat (limited to 'video')
-rw-r--r-- | video/win32_v.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/video/win32_v.c b/video/win32_v.c index 2fe8225ee..fd2c7b256 100644 --- a/video/win32_v.c +++ b/video/win32_v.c @@ -80,10 +80,6 @@ typedef struct { #define AS(x, z) {x, 0, z} #define AM(x, y, z, w) {x, y - x, z} -#ifndef VK_OEM_3 -#define VK_OEM_3 0xC0 -#endif - static const VkMapping _vk_mapping[] = { // Pageup stuff + up/down AM(VK_PRIOR,VK_DOWN, WKC_PAGEUP, WKC_DOWN), @@ -131,7 +127,6 @@ static uint MapWindowsKey(uint sym) return key; } -static void MakeWindow(bool full_screen); static bool AllocateDibSection(int w, int h); static void ClientSizeChanged(int w, int h) |