From 4d0bba314d3b584f15d1d50e59d8f1b8c9a39161 Mon Sep 17 00:00:00 2001 From: Tarek Soliman Date: Mon, 25 Apr 2011 15:26:38 -0500 Subject: ENGINES: Warn user about games marked with ADGF_UNSTABLE flags ADGF_UNSTABLE is always warned about. ADGF_TESTING is only warned about when running configure with --enable-relase. Both warnings are subject to the enable_wip_game_warning config option. --- common/error.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'common/error.cpp') diff --git a/common/error.cpp b/common/error.cpp index a6c52a0ce9..78178f8e27 100644 --- a/common/error.cpp +++ b/common/error.cpp @@ -67,6 +67,9 @@ static String errorToString(ErrorCode errorCode) { case kEnginePluginNotSupportSaves: return _s("Engine plugin does not support save states"); + case kUserCanceled: + return _s("User canceled"); + case kUnknownError: default: return _s("Unknown error"); -- cgit v1.2.3