mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-09-10 12:02:53 +02:00
Replace exception.type == Exception::Ok
with exception.is_ok()
This commit is contained in:
parent
b65525e609
commit
c96c571241
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ void ALStream::open(Exception &exception, const std::string &filename)
|
|||
{
|
||||
openSource(exception, filename);
|
||||
|
||||
if (exception.type == Exception::Ok)
|
||||
if (exception.is_ok())
|
||||
state = Stopped;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue