print stack trace on error

This commit is contained in:
Brian Matzon 2004-09-16 22:38:31 +00:00
parent dc11263ad5
commit 8e17e445d6
1 changed files with 1 additions and 0 deletions

View File

@ -253,6 +253,7 @@ public class NetTest {
FMOD.create();
} catch (FMODException fmode) {
error(fmode.getMessage());
fmode.printStackTrace();
return false;
}