View Issue Details

IDProjectCategoryView StatusLast Update
0000464OpenMPTlibopenmptpublic2014-01-01 01:37
Reportersezero Assigned Tomanx  
PrioritynormalSeveritytrivialReproducibilityalways
Status resolvedResolutionfixed 
Summary0000464: openmpt123 fails compiling with NO_PORTAUDIO=1
Description

openmpt123 fails compiling with NO_PORTAUDIO=1 due to a typo in openmpt123_sdl.hpp calling portaudio_exception instead of sdl_exception

Steps To Reproduce

Try compiling openmpt123 with NO_PORTAUDIO=1 and USE_SDL=1

Additional Information

Trivial patch below fixes it:

Index: openmpt123_sdl.hpp

--- openmpt123_sdl.hpp (revision 3535)
+++ openmpt123_sdl.hpp (working copy)
@@ -31,7 +31,7 @@
protected:
void check_sdl_error( int e ) {
if ( e < 0 ) {

  • throw portaudio_exception( e );
  • throw sdl_exception( e );
    return;
    }
    }
TagsNo tags attached.
Has the bug occurred in previous versions?
Tested code revision (in case you know it)libopenmpt-0.2.3532, as well as current svn (as of r3535)

Activities

manx

manx

2014-01-01 01:37

administrator   ~0001427

Thanks for reporting, fixed in r3536.

Issue History

Date Modified Username Field Change
2013-12-31 22:22 sezero New Issue
2014-01-01 01:37 manx Note Added: 0001427
2014-01-01 01:37 manx Status new => resolved
2014-01-01 01:37 manx Resolution open => fixed
2014-01-01 01:37 manx Assigned To => manx