about summary refs log tree commit diff
path: root/sol.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-03-24 00:16:33 -0400
committerJune McEnroe <june@causal.agency>2019-03-24 00:16:33 -0400
commit5288a63fbe5c71039c4bbe5df6b97b55f28d5c6a (patch)
tree57bc534b0683b5e0448b2090a3468b387d1ec746 /sol.c
parentFactor out suit, color and rank functions (diff)
downloadcards-5288a63fbe5c71039c4bbe5df6b97b55f28d5c6a.tar.gz
cards-5288a63fbe5c71039c4bbe5df6b97b55f28d5c6a.zip
Use SDL_ShowSimpleMessageBox for errors
Diffstat (limited to 'sol.c')
-rw-r--r--sol.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/sol.c b/sol.c
index bb73b84..1f791c2 100644
--- a/sol.c
+++ b/sol.c
@@ -343,6 +343,7 @@ static bool mouseMotion(SDL_MouseMotionEvent motion) {
 	return true;
 }
 
+static SDL_Window *window;
 static SDL_Renderer *render;
 static SDL_Texture *textures[Cards_Count];
 
@@ -356,9 +357,11 @@ static void renderList(const struct List *list) {
 	}
 }
 
-// TODO: Use SDL_ShowMessageBox.
-static void err(const char *prefix) {
-	fprintf(stderr, "%s: %s\n", prefix, SDL_GetError());
+static void err(const char *title) {
+	int error = SDL_ShowSimpleMessageBox(
+		SDL_MESSAGEBOX_ERROR, title, SDL_GetError(), window
+	);
+	if (error) fprintf(stderr, "%s\n", SDL_GetError());
 	exit(EXIT_FAILURE);
 }
 
@@ -366,7 +369,6 @@ int main(void) {
 	if (SDL_Init(SDL_INIT_VIDEO) < 0) err("SDL_Init");
 	atexit(SDL_Quit);
 
-	SDL_Window *window;
 	int error = SDL_CreateWindowAndRenderer(
 		WindowWidth, WindowHeight, SDL_WINDOW_ALLOW_HIGHDPI,
 		&window, &render