mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-04-10 19:15:13 +00:00
Fixed Makefile's clean command and Renderer linking error.
This commit is contained in:
parent
cf77599950
commit
30ada8a9b3
2
Makefile
2
Makefile
|
@ -15,4 +15,4 @@ $(EXECUTABLE): $(OBJECTS)
|
||||||
$(CC) $(CFLAGS) $< -o $@
|
$(CC) $(CFLAGS) $< -o $@
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf *o $(EXECUTABLE)
|
rm -rf src/*o $(EXECUTABLE)
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#include "Renderer.h"
|
#include "Renderer.h"
|
||||||
|
|
||||||
|
std::vector<GuiComponent*> renderVector;
|
||||||
|
|
||||||
void Renderer::registerComponent(GuiComponent* comp)
|
void Renderer::registerComponent(GuiComponent* comp)
|
||||||
{
|
{
|
||||||
renderVector.push_back(comp);
|
renderVector.push_back(comp);
|
||||||
|
|
|
@ -13,8 +13,6 @@ namespace Renderer
|
||||||
void unregisterComponent(GuiComponent* comp);
|
void unregisterComponent(GuiComponent* comp);
|
||||||
|
|
||||||
void render();
|
void render();
|
||||||
|
|
||||||
std::vector<GuiComponent*> renderVector;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue