fix indent

This commit is contained in:
GenevensiS
2024-10-04 23:18:10 +02:00
parent e8b3b260b6
commit 4e926e11e3
+5 -5
View File
@@ -28,11 +28,11 @@ SCRIPT_FUNCTION(get_mse_version) {
SCRIPT_FUNCTION(trace) { SCRIPT_FUNCTION(trace) {
SCRIPT_PARAM_C(String, input); SCRIPT_PARAM_C(String, input);
#if defined(_DEBUG) && 0 #if defined(_DEBUG) && 0
wxLogDebug(_("Trace:\t") + input); wxLogDebug(_("Trace:\t") + input);
#else #else
queue_message(MESSAGE_INFO, _("Trace: ") + input); queue_message(MESSAGE_INFO, _("Trace: ") + input);
#endif #endif
SCRIPT_RETURN(input); SCRIPT_RETURN(input);
} }