SAGA2: Remove rmemfta.h

This commit is contained in:
Eugene Sandulenko 2021-06-02 00:57:39 +02:00
parent c571279f1b
commit 3e79f9cd1b
No known key found for this signature in database
GPG key ID: 014D387312D34F08
33 changed files with 100 additions and 239 deletions

View file

@ -33,7 +33,6 @@
#include "saga2/floating.h"
#include "saga2/gbevel.h"
#include "saga2/fontlib.h"
#include "saga2/rmemfta.h"
namespace Saga2 {
@ -110,7 +109,7 @@ int16 FTAMessageBox(char *msg,
int16 MsgBox(char *msg,
char *btnMsg1,
char *btnMsg2) {
ErrorWindow *win = NEW_MSGR ErrorWindow(msg, btnMsg1, btnMsg2);
ErrorWindow *win = new ErrorWindow(msg, btnMsg1, btnMsg2);
int16 res = win->getResult();
delete win;
return res;