Tagged Questions
0
votes
1answer
49 views
Linking error when compiling Allegro example
I am currently learning about game development tools and decided to use Allegro and OpenGL for starters. I've run into some problems in getting examples to compile though. It seems the allergro.h ...
3
votes
1answer
253 views
Variables in static library are never initialized. Why?
I have a bunch of variables that should be initialized then my game launches, but must of them are never initialized.
Here is an example of the code:
MyClass.h
class MyClass : public BaseObject {
...
2
votes
2answers
681 views
Was C++ designed for speed, and is it better to not use high level features when teaming with inexperienced programmers?
I have read some optimisation guide for C++, and it seems it requires more knowledge to have a fast C++ code, than using C++ without the high level features of C++ (classes, templates, inheritance, ...