diff --git a/src/map.c b/src/map.c
index 7e08c0b2d479545c32d54257618c63c06a722dd4..3840aacb4a56f2e96b46bdbdd51de2ae69aca816 100644
--- a/src/map.c
+++ b/src/map.c
@@ -209,8 +209,12 @@ static int map_object_texture(lua_State *L)
 static int map_object_shader(lua_State *L)
 {
 	map_object *obj = (map_object*)auxiliar_checkclass(L, "core{mapobj}", 1);
-	shader_type *s = (shader_type*)auxiliar_checkclass(L, "gl{program}", 2);
-	obj->shader = s;
+	if (!lua_isnil(L, 2)) {
+		shader_type *s = (shader_type*)auxiliar_checkclass(L, "gl{program}", 2);
+		obj->shader = s;
+	} else {
+		obj->shader = NULL;
+	}
 	return 0;
 }
 
diff --git a/src/particles.c b/src/particles.c
index 18b5d4323f7dcd43b7fb40913aa9c5c6e0809f75..bc615956be0e6544a532c5dffb559273073ba255 100644
--- a/src/particles.c
+++ b/src/particles.c
@@ -244,7 +244,6 @@ static void particles_draw(particles_type *ps, float x, float y, float zoom)
 
 	if (ps->shader) glUseProgramObjectARB(0);
 
-	glRotatef(-ps->rotate, 0, 0, 1);
 	glPopMatrix();
 	glTranslatef(-x, -y, 0);