diff options
Diffstat (limited to 'src/crepe')
| -rw-r--r-- | src/crepe/Sound.cpp | 1 | ||||
| -rw-r--r-- | src/crepe/api/AudioSource.h | 2 | ||||
| -rw-r--r-- | src/crepe/util/log.h | 3 | 
3 files changed, 4 insertions, 2 deletions
| diff --git a/src/crepe/Sound.cpp b/src/crepe/Sound.cpp index 73ad69c..64fa281 100644 --- a/src/crepe/Sound.cpp +++ b/src/crepe/Sound.cpp @@ -58,4 +58,3 @@ void Sound::set_looping(bool looping) {  	if (!ctx.engine.isValidVoiceHandle(this->handle)) return;  	ctx.engine.setLooping(this->handle, this->looping);  } - diff --git a/src/crepe/api/AudioSource.h b/src/crepe/api/AudioSource.h index 9dfaf46..2002d1a 100644 --- a/src/crepe/api/AudioSource.h +++ b/src/crepe/api/AudioSource.h @@ -2,8 +2,8 @@  #include <memory> -#include "Component.h"  #include "Asset.h" +#include "Component.h"  namespace crepe {  class Sound; diff --git a/src/crepe/util/log.h b/src/crepe/util/log.h index 4cab338..bfe7291 100644 --- a/src/crepe/util/log.h +++ b/src/crepe/util/log.h @@ -12,9 +12,12 @@  					  __FILE_NAME__, __LINE__, crepe::util::color::RESET, \  					  __VA_ARGS__) +// very illegal global function-style macros +// NOLINTBEGIN  #define dbg_logf(fmt, ...) _crepe_logf_here(": " fmt, __VA_ARGS__)  #define dbg_log(str) _crepe_logf_here(": %s", str)  #define dbg_trace() _crepe_logf_here("%s", "") +// NOLINTEND  #endif |