Allegro won't work!!!

Help! I've downloaded Allegro and installed it properly, and after fixing the "Missing MSVCR110.dll" error, now whenever I try to run my program, it just gives me the error "The application was unable to start correctly (0xc000007b). Click OK to close the application." AGH why is this so complicated!? SDL has no recent tutorials, Allegro doesn't start, is it me or is it Visual Studio 2013!? :(

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <allegro5/allegro.h>
#include <allegro5/allegro_native_dialog.h>

int main(void)

{
	ALLEGRO_DISPLAY *display = NULL;
	
	if (!al_init());
	{
	
		al_show_native_message_box(NULL, NULL, NULL, "Error", NULL, NULL);

	return 0;

	}
}
if you simply want to get allegro 5 up and running as quickly as possible. I would suggest you look into dev c++ and then head over to devpaks.org specifically here: http://devpaks.org/category.php?category=Allegro
@Kiddolioable

Have you made a thread seeking help at http://www.allegro.cc as that is the main place to find allegro users.
Ty everyone, I've decided to use SLD 2.0.3 since it's working pretty well with visual 2013 (which by itself is really good but sucks when it comes to using it with stuff like Allegro because there aren't proper updates from Allegro yet)
Topic archived. No new replies allowed.