mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +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 $@
|
||||
|
||||
clean:
|
||||
rm -rf *o $(EXECUTABLE)
|
||||
rm -rf src/*o $(EXECUTABLE)
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#include "Renderer.h"
|
||||
|
||||
std::vector<GuiComponent*> renderVector;
|
||||
|
||||
void Renderer::registerComponent(GuiComponent* comp)
|
||||
{
|
||||
renderVector.push_back(comp);
|
||||
|
|
|
@ -13,8 +13,6 @@ namespace Renderer
|
|||
void unregisterComponent(GuiComponent* comp);
|
||||
|
||||
void render();
|
||||
|
||||
std::vector<GuiComponent*> renderVector;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue