Skip to content

Commit

Permalink
Fixed a load more incorrect file encodings.
Browse files Browse the repository at this point in the history
  • Loading branch information
danij committed Mar 25, 2008
1 parent 1215f49 commit ef829fe
Show file tree
Hide file tree
Showing 20 changed files with 60 additions and 42 deletions.
3 changes: 2 additions & 1 deletion doomsday/engine/portable/include/b_class.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -21,7 +22,7 @@
* Boston, MA 02110-1301 USA
*/

/*
/**
* b_class.h: Bindings Classes
*/

Expand Down
9 changes: 5 additions & 4 deletions doomsday/engine/portable/include/b_command.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -21,7 +22,7 @@
* Boston, MA 02110-1301 USA
*/

/*
/**
* b_command.h: Event-Command Bindings
*/

Expand All @@ -35,13 +36,13 @@ typedef struct evbinding_s {
struct evbinding_s* next; // Next in list of bindings.
int bid; // Binding identifier.
char* command; // Command to execute.
uint device; // Which device?

uint device; // Which device?
ddeventtype_t type; // Type of event.
int id; // Identifier.
ebstate_t state;
float pos;

// Additional conditions.
int numConds;
statecondition_t* conds;
Expand Down
9 changes: 5 additions & 4 deletions doomsday/engine/portable/include/b_device.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -21,7 +22,7 @@
* Boston, MA 02110-1301 USA
*/

/*
/**
* b_device.h: Control-Device Bindings
*/

Expand All @@ -43,14 +44,14 @@ typedef enum cbdevtype_e {
typedef struct dbinding_s {
struct dbinding_s* next;
struct dbinding_s* prev;

int bid;
uint device;
cbdevtype_t type;
int id;
float angle;
uint flags;

// Additional conditions.
int numConds;
statecondition_t* conds;
Expand All @@ -61,7 +62,7 @@ void B_DestroyDeviceBindingList(dbinding_t* listRoot);
dbinding_t* B_NewDeviceBinding(dbinding_t* listRoot, const char* deviceDesc);
void B_DestroyDeviceBinding(dbinding_t* cb);
void B_DeviceBindingToString(const dbinding_t* b, ddstring_t* str);
void B_EvaluateDeviceBindingList(dbinding_t* listRoot, float* pos, float* relativeOffset,
void B_EvaluateDeviceBindingList(dbinding_t* listRoot, float* pos, float* relativeOffset,
struct bclass_s* controlClass);

#endif // __DOOMSDAY_BIND_DEVICE_H__
Expand Down
3 changes: 2 additions & 1 deletion doomsday/engine/portable/include/b_main.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -21,7 +22,7 @@
* Boston, MA 02110-1301 USA
*/

/*
/**
* b_main.h: Bindings
*/

Expand Down
5 changes: 3 additions & 2 deletions doomsday/engine/portable/include/b_util.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -21,7 +22,7 @@
* Boston, MA 02110-1301 USA
*/

/*
/**
* b_main.h: Bindings
*/

Expand Down Expand Up @@ -52,7 +53,7 @@ typedef enum stateconditiontype_e {

// Device state condition.
typedef struct statecondition_s {
uint device; // Which device?
uint device; // Which device?
stateconditiontype_t type;
boolean negate; // Test the inverse (e.g., not in a specific state).
int id; // Toggle/axis/angle identifier in the device.
Expand Down
5 changes: 3 additions & 2 deletions doomsday/engine/portable/include/cl_def.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2003-2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -17,11 +18,11 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/

/*
/**
* cl_def.h: Client Definitions
*/

Expand Down
5 changes: 3 additions & 2 deletions doomsday/engine/portable/include/cl_frame.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2003-2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -17,11 +18,11 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/

/*
/**
* cl_frame.h: Frame Reception
*/

Expand Down
5 changes: 3 additions & 2 deletions doomsday/engine/portable/include/cl_sound.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2003-2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -17,11 +18,11 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/

/*
/**
* cl_sound.h: Clientside Sounds
*/

Expand Down
5 changes: 3 additions & 2 deletions doomsday/engine/portable/include/con_bar.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2003-2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -17,11 +18,11 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/

/*
/**
* con_bar.h: Console Progress Bar
*/

Expand Down
5 changes: 3 additions & 2 deletions doomsday/engine/portable/include/con_busy.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -17,11 +18,11 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/

/*
/**
* con_busy.h: Console Busy Mode
*/

Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/portable/include/dam_file.h
Expand Up @@ -3,7 +3,7 @@
* License: GPL
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2007 Daniel Swanson <danij@dengine.net>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down
9 changes: 5 additions & 4 deletions doomsday/engine/portable/include/dd_version.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2003-2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*\author Copyright © 2006 Jamie Jones <jamie_jones_au@yahoo.com.au>
*
* This program is free software; you can redistribute it and/or modify
Expand All @@ -18,18 +19,18 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/

/*
/**
* dd_version.h: Version Information
*/

#ifndef __DOOMSDAY_VERSION_INFO_H__
#define __DOOMSDAY_VERSION_INFO_H__

/*
/**
* Version number rules: (major).(minor).(revision)-(release)
*
* Major version will be 1 for now (few things short of a complete
Expand All @@ -42,7 +43,7 @@
* Revision number increases with each small (maintenance) release.
*/

/*
/**
* Version constants. The Game module can use DOOMSDAY_VERSION to
* verify that the engine is new enough. Don't change
* DOOMSDAY_VERSION unless you wish to break compatibility.
Expand Down
5 changes: 3 additions & 2 deletions doomsday/engine/portable/include/de_audio.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2003-2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -17,11 +18,11 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/

/*
/**
* de_audio.h: Audio Subsystem
*/

Expand Down
4 changes: 2 additions & 2 deletions doomsday/engine/portable/include/de_bsp.h
Expand Up @@ -3,7 +3,7 @@
* License: GPL
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2007 Daniel Swanson <danij@dengine.net>
*\author Copyright © 2007-2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -21,7 +21,7 @@
* Boston, MA 02110-1301 USA
*/

/*
/**
* de_bsp.h: BSP generation.
*/

Expand Down
5 changes: 3 additions & 2 deletions doomsday/engine/portable/include/de_defs.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2003-2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -17,11 +18,11 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/

/*
/**
* de_defs.h: Definitions Subsystem
*/

Expand Down
5 changes: 3 additions & 2 deletions doomsday/engine/portable/include/de_network.h
Expand Up @@ -4,6 +4,7 @@
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2003-2007 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2008 Daniel Swanson <danij@dengine.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -17,11 +18,11 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/

/*
/**
* de_network.h: Network Subsystem
*/

Expand Down

0 comments on commit ef829fe

Please sign in to comment.