Fixed tiny bugs, prepping for rest of scene
This commit is contained in:
@ -4,10 +4,10 @@
|
|||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
#include "game/DawnGame.hpp"
|
#include "game/DawnGame.hpp"
|
||||||
#include "vnscenes/ScenePrologue0.hpp"
|
#include "vnscenes/SceneInitial.hpp"
|
||||||
|
|
||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
|
||||||
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
|
Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) {
|
||||||
return new ScenePrologue0(game);
|
return new SceneInitial(game);
|
||||||
}
|
}
|
@ -150,7 +150,6 @@ void VNSceneGen::test(
|
|||||||
case VN_SCENE_EVENT_SET_DEFAULT_FONT: {
|
case VN_SCENE_EVENT_SET_DEFAULT_FONT: {
|
||||||
initType = "VNSetDefaultFontEvent";
|
initType = "VNSetDefaultFontEvent";
|
||||||
toInclude = "games/vn/events/VNSetDefaultFontEvent.hpp";
|
toInclude = "games/vn/events/VNSetDefaultFontEvent.hpp";
|
||||||
printf("GENERATING\n\n\n");
|
|
||||||
std::string strFont = "<font ";
|
std::string strFont = "<font ";
|
||||||
auto sdf = event->setDefaultFont;
|
auto sdf = event->setDefaultFont;
|
||||||
if(!sdf.font.empty()) strFont += "font=" + stringParser(sdf.font, NULL);
|
if(!sdf.font.empty()) strFont += "font=" + stringParser(sdf.font, NULL);
|
||||||
|
Reference in New Issue
Block a user