diff render_sdl.c @ 874:b6842dfb8edf

ROM is now run after being selected in menu. Initial path for menu is read from config file.
author Michael Pavone <pavone@retrodev.com>
date Sun, 08 Nov 2015 18:38:33 -0800
parents 7ed55a361e79
children 252dfd29831d
line wrap: on
line diff
--- a/render_sdl.c	Sun Nov 08 15:58:36 2015 -0800
+++ b/render_sdl.c	Sun Nov 08 18:38:33 2015 -0800
@@ -371,10 +371,15 @@
 		}
 	}
 	SDL_JoystickEventState(SDL_ENABLE);
-	
+
 	atexit(render_quit);
 }
 
+void render_update_caption(char *title)
+{
+	caption = title;
+}
+
 void render_context(vdp_context * context)
 {
 	int width  = context->regs[REG_MODE_4] & BIT_H40 ? 320.0f : 256.0f;