use different uuid for the new "empty" room template

This commit is contained in:
Nedko Arnaudov 2010-03-01 00:56:02 +02:00
parent dae8634a68
commit e897f8a983
1 changed files with 4 additions and 1 deletions

View File

@ -36,6 +36,9 @@
#define INTERFACE_NAME IFACE_CONTROL
/* 805e485f-65e4-4c37-a959-2a3b60b3c270 */
UUID_DEFINE(empty_room,0x80,0x5E,0x48,0x5F,0x65,0xE4,0x4C,0x37,0xA9,0x59,0x2A,0x3B,0x60,0xB3,0xC2,0x70);
/* c603f2a0-d96a-493e-a8cf-55581d950aa9 */
UUID_DEFINE(basic_room,0xC6,0x03,0xF2,0xA0,0xD9,0x6A,0x49,0x3E,0xA8,0xCF,0x55,0x58,0x1D,0x95,0x0A,0xA9);
@ -45,7 +48,7 @@ bool create_builtin_rooms(void)
{
ladish_room_handle room;
if (!ladish_room_create(basic_room, "Empty", &room))
if (!ladish_room_create(empty_room, "Empty", &room))
{
log_error("ladish_room_create() failed.");
return false;