aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/sfx/fmodexexception.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25/sfx/fmodexexception.h')
-rw-r--r--engines/sword25/sfx/fmodexexception.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/engines/sword25/sfx/fmodexexception.h b/engines/sword25/sfx/fmodexexception.h
index 7be4d6d978..05e6d82310 100644
--- a/engines/sword25/sfx/fmodexexception.h
+++ b/engines/sword25/sfx/fmodexexception.h
@@ -23,7 +23,7 @@
*
*/
-/*
+/*
* This code is based on Broken Sword 2.5 engine
*
* Copyright (c) Malte Thiesen, Daniel Queteschiner and Michael Elsdoerfer
@@ -45,21 +45,19 @@
// Klassendefinition
// -----------------------------------------------------------------------------
-class BS_FMODExException
-{
+class BS_FMODExException {
public:
- BS_FMODExException(const char * Function_, FMOD_RESULT Result_) :
+ BS_FMODExException(const char *Function_, FMOD_RESULT Result_) :
Function(Function_),
Result(Result_) {}
- const char * Function;
- FMOD_RESULT Result;
+ const char *Function;
+ FMOD_RESULT Result;
- void Log()
- {
- BS_LOG_ERROR("Call to %s failed.", Function);
- BS_LOGLN(" FMOD error: %s(%d)", FMOD_ErrorString(Result), Result);
- }
+ void Log() {
+ BS_LOG_ERROR("Call to %s failed.", Function);
+ BS_LOGLN(" FMOD error: %s(%d)", FMOD_ErrorString(Result), Result);
+ }
};
#endif