aboutsummaryrefslogtreecommitdiff
path: root/shell/video/retrostone/video_blit.h
diff options
context:
space:
mode:
Diffstat (limited to 'shell/video/retrostone/video_blit.h')
-rw-r--r--shell/video/retrostone/video_blit.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/shell/video/retrostone/video_blit.h b/shell/video/retrostone/video_blit.h
index 8e1c81c..09aab60 100644
--- a/shell/video/retrostone/video_blit.h
+++ b/shell/video/retrostone/video_blit.h
@@ -3,13 +3,13 @@
#include <SDL/SDL.h>
-#define HOST_WIDTH_RESOLUTION (sdl_screen->w)
-#define HOST_HEIGHT_RESOLUTION (sdl_screen->h)
+#define HOST_WIDTH_RESOLUTION sdl_screen->w
+#define HOST_HEIGHT_RESOLUTION sdl_screen->h
-#define INTERNAL_WSWAN_WIDTH 224
-#define INTERNAL_WSWAN_HEIGHT 144
+#define BACKBUFFER_WIDTH_RESOLUTION backbuffer->w
+#define BACKBUFFER_HEIGHT_RESOLUTION backbuffer->h
-extern SDL_Surface *screen, *wswan_vs, *backbuffer;
+extern SDL_Surface *sdl_screen, *backbuffer;
extern uint32_t width_of_surface;
extern uint32_t* Draw_to_Virtual_Screen;